From 43be9218cab03c27141fd4c1ca7ad8c9c2289fbc Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 31 May 1993 17:59:07 +0000 Subject: [PATCH] (run-at-time): Pass args to start-process in right order. --- lisp/timer.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lisp/timer.el b/lisp/timer.el index 1bfc5ec323a..609224a66e5 100644 --- a/lisp/timer.el +++ b/lisp/timer.el @@ -71,8 +71,9 @@ Relative times may be specified as a series of numbers followed by units: (let ((process-connection-type nil)) ;; Don't search the exec path for the timer program; ;; we know exactly which one we want. - (start-process (expand-file-name timer-program exec-directory) - nil "timer")) + (start-process "timer" nil + (expand-file-name timer-program + exec-directory))) timer-alist nil) (set-process-filter timer-process 'timer-process-filter) (set-process-sentinel timer-process 'timer-process-sentinel) -- 2.30.2